home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 23 / Amiga Format AFCD23 (Feb 1998, Issue 107).iso / -in_the_mag- / emulation / computers / fmsx_1.4 / arexx / faster.fmsx next >
Text File  |  1997-12-12  |  310b  |  19 lines

  1. /*    This is an ARexx script for use with fMSX Amiga.
  2.  
  3.     $VER: faster.fmsx 1.4 (12.5.97)
  4.  
  5.     This script changes the interruptperiod and refreshcycle parameters
  6.     so that fMSX runs a bit faster.
  7. */
  8.  
  9. options results
  10.  
  11. address FMSX.0
  12.  
  13. interruptperiod
  14. interruptperiod result - 300
  15.  
  16. refreshcycle
  17. refreshcycle result + 1
  18.  
  19.